home *** CD-ROM | disk | FTP | other *** search
/ Champak 45 / Vol 45.iso / games / escape.swf / scripts / DefineSprite_14_dangan / frame_1 / DoAction.as
Encoding:
Text File  |  2005-08-23  |  873 b   |  40 lines

  1. if(target == 1)
  2. {
  3.    targetX = _root.chara01._x - _root.enemy._x;
  4. }
  5. if(target == 2)
  6. {
  7.    targetX = _root.chara02._x - _root.enemy._x;
  8. }
  9. if(target == 3)
  10. {
  11.    targetX = _root.chara03._x - _root.enemy._x;
  12. }
  13. _X = 15;
  14. _Y = 20;
  15. a = 0;
  16. dsize = 0;
  17. this.onEnterFrame = function()
  18. {
  19.    a += 0.5;
  20.    _Y = _Y + a;
  21.    if(_X != targetX)
  22.    {
  23.       dx = (_X - targetX) / 10;
  24.       _X = _X - dx;
  25.    }
  26.    dsize += 0.1;
  27.    _width = _width + dsize;
  28.    _height = _height + dsize;
  29.    if(_Y + _root.enemy._y > _global.defY)
  30.    {
  31.       _global.depth = _global.depth + 1;
  32.       newname = "bakuhatu" + _global.depth;
  33.       props = {_x:this._x + _root.enemy._x,_y:_global.defY};
  34.       _root.attachmovie("bakuhatu1",newname,depth,props);
  35.       _root.mySound.attachSound("s_bakuhatu.wav");
  36.       _root.mySound.start([0,1]);
  37.       this.removeMovieClip();
  38.    }
  39. };
  40.